Project Overview

Back to Welcome Page

Current Projects

  1. NotionExodus - Migration tool
  2. Documentation - User guides
  3. Testing Suite - Quality assurance

Timeline

Project started in January 2024 with the goal of helping users migrate from Notion to Obsidian.


// Example code block
function convertNotionToObsidian(notionExport) {
    return notionExport.map(page => ({
        title: page.title,
        content: convertToMarkdown(page.content)
    }));
}